home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr30 / scr210a.zip / BWVID.DOC < prev    next >
Text File  |  1993-01-23  |  896b  |  25 lines

  1. BWVID - See the Assembler program for detailed documentation.
  2. SETBW40 - When executed this sets system in BW 40x25 mode
  3. SETBW80 - When executed this sets system in BW 80x25 mode
  4.  
  5. SETBW40 does the same thing as MODE BW40
  6. SETBW80 does the same thing as MODE BW80
  7.  
  8. If you are using a Black and White Monitor on a color graphics card,
  9. your AUTOEXEC.BAT file should include either SETBW40 or SETBW80 followed
  10. by BWVID.  Example:
  11.    SETBW80
  12.    BWVID
  13.    DATE
  14.    TIME
  15.  
  16. If you make changes to the assembler file and then try to reassemble and
  17. relink the program,  your link and load sequence should look like:
  18.    MASM bwvid;
  19.    LINK bwvid;
  20.    EXE2BIN bwvid.exe bwvid.com
  21.  
  22. Please note that you should expect a Stack error and an unsatisfied external
  23. reference at the link stage.  The stack is not needed and the unsatisfied
  24. external is resolved at install time.
  25.